2008-09-08 Paolo Borelli <pborelli@katamail.com>
* gtk/gtkfilechooserentry.c (install_start_autocompletion_idle):
use gdk_threads_add_idle so that the handler acquires the lock
since it calls gtk functions.
svn path=/trunk/; revision=21321
+2008-09-08 Paolo Borelli <pborelli@katamail.com>
+
+ * gtk/gtkfilechooserentry.c (install_start_autocompletion_idle):
+ use gdk_threads_add_idle so that the handler acquires the lock
+ since it calls gtk functions.
+
2008-09-08 Tor Lillqvist <tml@novell.com>
* configure.in (debug_default): Correct help string for
if (chooser_entry->start_autocompletion_idle_id != 0)
return;
- chooser_entry->start_autocompletion_idle_id = g_idle_add (start_autocompletion_idle_handler, chooser_entry);
+ chooser_entry->start_autocompletion_idle_id = gdk_threads_add_idle (start_autocompletion_idle_handler, chooser_entry);
}
#ifdef G_OS_WIN32